From: Ralf Baechle Date: Fri, 8 Aug 2014 13:09:40 +0000 (+0200) Subject: MIPS: GIC: Remove useless parens from GICBIS(). X-Git-Tag: archive/raspbian/4.9.13-1+rpi1~10^2~6042^2~15 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/%22bookmarks:/?a=commitdiff_plain;h=f28ff3d1ead40515c14ee841dc8b801c7d64353b;p=linux-4.9.git MIPS: GIC: Remove useless parens from GICBIS(). Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/include/asm/gic.h b/arch/mips/include/asm/gic.h index 3f20b2111d56..d7699cf7e135 100644 --- a/arch/mips/include/asm/gic.h +++ b/arch/mips/include/asm/gic.h @@ -49,7 +49,7 @@ #endif #define GICBIS(reg, mask, bits) \ do { u32 data; \ - GICREAD((reg), data); \ + GICREAD(reg, data); \ data &= ~(mask); \ data |= ((bits) & (mask)); \ GICWRITE((reg), data); \